﻿childhood_education_start_age = 4

education_level_1 = 7 # education_level_1 = 5 # Required for education rank 2
education_level_2 = 10 # education_level_2 = 7 # Required for education rank 3
education_level_3 = 13 # education_level_3 = 10 # Required for education rank 4

child_education_conversion_tooltip_chance = {
	add = 1
	# MALE
	if = {
		limit = { is_male = yes }
		if = {
			limit = { age >= 13 }
			subtract = 1
		}
		else_if = {
			limit = { age > 10 }
			subtract = child_education_conversion_chance
		}
	}
	# FEMALE
	else_if = {
		limit = { is_female = yes }
		if = {
			limit = { age >= 11 }
			subtract = 1
		}
		else_if = {
			limit = { age > 10 }
			subtract = child_education_conversion_chance
		}
	}
}